home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / demoversionen_3846 / 13664 / files / Data1.cab / tcsdkbmpbridge.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-07-15  |  1.5 KB  |  33 lines

  1. //******************************************************************'
  2. //*                                                                *'
  3. //*                      TurboCAD for Windows                      *'
  4. //*                   Copyright (c) 1993 - 2004                    *'
  5. //*             International Microcomputer Software, Inc.         *'
  6. //*                            (IMSI)                              *'
  7. //*                      All rights reserved.                      *'
  8. //*                                                                *'
  9. //******************************************************************'
  10.  
  11. // The following ifdef block is the standard way of creating macros which make exporting 
  12. // from a DLL simpler. All files within this DLL are compiled with the TCSDKBMPBRIDGE_EXPORTS
  13. // symbol defined on the command line. this symbol should not be defined on any project
  14. // that uses this DLL. This way any other project whose source files include this file see 
  15. // TCSDKBMPBRIDGE_API functions as being imported from a DLL, whereas this DLL sees symbols
  16. // defined with this macro as being exported.
  17. #ifdef TCSDKBMPBRIDGE_EXPORTS
  18. #define TCSDKBMPBRIDGE_API __declspec(dllexport)
  19. #else
  20. #define TCSDKBMPBRIDGE_API __declspec(dllimport)
  21. #endif
  22.  
  23. // This class is exported from the TCSDKBMPBridge.dll
  24. class TCSDKBMPBRIDGE_API CTCSDKBMPBridge {
  25. public:
  26.     CTCSDKBMPBridge(void);
  27.     // TODO: add your methods here.
  28. };
  29.  
  30. extern TCSDKBMPBRIDGE_API int nTCSDKBMPBridge;
  31.  
  32. TCSDKBMPBRIDGE_API int fnTCSDKBMPBridge(void);
  33.